home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 23
/
Amiga Format AFCD23 (Feb 1998, Issue 107).iso
/
-seriously_amiga-
/
shareware
/
workbench
/
startupctrl2.30
/
install_english
< prev
next >
Wrap
Text File
|
1997-12-01
|
3KB
|
78 lines
;
; Installer Script for StartupControl
; $VER: 1.0 (18.11.97)
;
(set @default-dest "C:")
(message "Welcome to the Installation script of StartupControl!\n\n"
"StartupControl is a \"multifunctional utility\" for your startup-sequence.\n"
"It was designed with the intention to offer direct control to the boot-\n"
"process combined with easiest operation and much comfort.\n"
"With StartupControl you can get information about the status of your\n"
"computer and set a desired configuration every time your Amiga boots.\n\n"
"This script will install all needed files to your system.\n\n"
"Version to install:\n V2.30 (18. November 97)")
(set src "StartupControl")
(complete 0)
(set destdir (askdir (prompt "Please select where StartupControl should be installed\n"
"A drawer will NOT be created.")
(help @askdir-help)
(default "C:")))
(complete 20)
(set destdoc (askdir (prompt "Please select where to install the documentation\n"
"A drawer will NOT be created.")
(help @askdir-help)
(default "Docs:")))
(complete 40)
(set doc (askchoice (prompt"Select which documentation do you want to install")
(help"No help available")
(choices "english guide" "german guide")))
; Installation
(complete 60)
(copyfiles (prompt "Copying StartupControl...")
(help "No help available")
(source "StartupControl")
(dest destdir))
(complete 80)
(if doc ((copyfiles (prompt "Copying german documentation...")
(help "No help available")
(source "StartupControl_ger.guide")
(dest destdoc))
(copyfiles (prompt "Copying german documentation...")
(help "No help available")
(source "StartupControl_ger.guide.info")
(dest destdoc)))
((copyfiles (prompt "Copying english documentation...")
(help "No help available")
(source "StartupControl_eng.guide")
(dest destdoc))
(copyfiles (prompt "Copying english documentation...")
(help "No help available")
(source "StartupControl_eng.guide.info")
(dest destdoc))))
(complete 100)
(message "\nInstallation script complete!\n"
"StartupControl can be found in your "
"\"" destdir "\" "
"drawer\n\nTo use StartupControl, please add the following line\n to your startup-sequence after SetPatch:\n\n " (tackon destdir src) "\n\n"
"Read the documentation for further information about the usage\n of StartupControl and registration via ADSG.")
(exit (quiet))